home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / CSUBR.LZH / TOUPPER.C < prev    next >
Text File  |  1985-08-05  |  233b  |  16 lines

  1. #include "stdio.h"
  2. #define END 0xff
  3. #define ERROR 0
  4. #define CPMEOF 0X1A
  5.  
  6. main(argc,argv)
  7. int argc;
  8. char *argv[];
  9.  
  10. {
  11.     char c, getc();
  12.  
  13.     while (((c = getc(stdin)) != CPMEOF) && (c != END)) 
  14.         putc(toupper(c),stdout);
  15. }
  16.